home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / midi / omed_pt.lha / rexx / DelDragUp.omed < prev    next >
Text File  |  1995-11-25  |  413b  |  16 lines

  1. /* Delete the ranged notes and drag the following up - Case 04-11-95 */
  2.  
  3. address OCTAMED_REXX
  4. options results
  5.  
  6. 'op_update off'
  7. 'rn_getrangestartline'; rnstartline = result
  8. 'rn_getrangeendline'; rnendline = result
  9. length = rnendline - rnstartline    
  10. length = length + 1
  11. 'ed_getcurrline'; currline = result
  12. 'ed_deletenote line' rnstartline 'delspace' length
  13. 'ed_goto line' rnstartline
  14. 'rn_cancelrange'
  15. 'op_update on'
  16.